home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / CHATZILLA.XPI / bin / chrome / chatzilla.jar / content / chatzilla / menus.js < prev    next >
Encoding:
JavaScript  |  2005-06-07  |  16.1 KB  |  468 lines

  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2.  *
  3.  * ***** BEGIN LICENSE BLOCK *****
  4.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public License Version
  7.  * 1.1 (the "License"); you may not use this file except in compliance with
  8.  * the License. You may obtain a copy of the License at
  9.  * http://www.mozilla.org/MPL/
  10.  *
  11.  * Software distributed under the License is distributed on an "AS IS" basis,
  12.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.  * for the specific language governing rights and limitations under the
  14.  * License.
  15.  *
  16.  * The Original Code is ChatZilla.
  17.  *
  18.  * The Initial Developer of the Original Code is
  19.  * Netscape Communications Corporation.
  20.  * Portions created by the Initial Developer are Copyright (C) 1998
  21.  * the Initial Developer. All Rights Reserved.
  22.  *
  23.  * Contributor(s):
  24.  *   Robert Ginda, <rginda@netscape.com>, original author
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  28.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the MPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the MPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39.  
  40. function initMenus()
  41. {
  42.     function isMotif(name)
  43.     {
  44.         return "client.prefs['motif.current'] == " +
  45.             "client.prefs['motif." + name + "']";
  46.     };
  47.  
  48.     function isFontFamily(name)
  49.     {
  50.         return "cx.sourceObject.prefs['font.family'] == '" + name + "'";
  51.     };
  52.  
  53.     function isFontFamilyCustom()
  54.     {
  55.         return "!cx.sourceObject.prefs['font.family']." +
  56.                "match(/^(default|(sans-)?serif|monospace)$/)";
  57.     };
  58.  
  59.     function isFontSize(size)
  60.     {
  61.         return "cx.fontSize == cx.fontSizeDefault + " + size;
  62.     };
  63.  
  64.     function isFontSizeCustom()
  65.     {
  66.         // It's "custom" if it's set (non-zero/not default), not the default
  67.         // size (medium) and not +/-2 (small/large).
  68.         return "'fontSize' in cx && cx.fontSize != 0 && " +
  69.                "cx.fontSizeDefault != cx.fontSize && " +
  70.                "Math.abs((cx.fontSizeDefault - cx.fontSize) / 2) != 1";
  71.     };
  72.  
  73.     function onMenuCommand (event, window)
  74.     {
  75.         var params;
  76.         var commandName = event.originalTarget.getAttribute("commandname");
  77.         if ("cx" in client.menuManager && client.menuManager.cx)
  78.         {
  79.             client.menuManager.cx.sourceWindow = window;
  80.             params = client.menuManager.cx;
  81.         }
  82.         else
  83.         {
  84.             params = { sourceWindow: window };
  85.         }
  86.  
  87.         dispatch (commandName, params);
  88.  
  89.         delete client.menuManager.cx;
  90.     };
  91.  
  92.     client.onMenuCommand = onMenuCommand;
  93.     client.menuSpecs = new Object();
  94.     var menuManager = new MenuManager(client.commandManager,
  95.                                       client.menuSpecs,
  96.                                       getCommandContext,
  97.                                       "client.onMenuCommand(event, window);");
  98.     client.menuManager = menuManager;
  99.  
  100.     client.menuSpecs["maintoolbar"] = {
  101.         items:
  102.         [
  103.          ["disconnect"],
  104.          ["quit"],
  105.          ["part"]
  106.         ]
  107.     };
  108.  
  109.     var notInChannel = "((cx.TYPE == 'IRCChannel') and !cx.channel.active)";
  110.     var inChannel = "((cx.TYPE == 'IRCChannel') and cx.channel.active)";
  111.     var netConnected = "cx.network and cx.network.isConnected()";
  112.     var netDisconnected = "cx.network and !cx.network.isConnected()";
  113.  
  114.     client.menuSpecs["mainmenu:file"] = {
  115.         label: MSG_MNU_FILE,
  116.         getContext: getDefaultContext,
  117.         items:
  118.         [
  119.          ["join"],
  120.          // Planned future menu items, not implemented yet.
  121.          //["attach"],
  122.          //["-"],
  123.          //["manage-networks"],
  124.          //["manage-plugins"],
  125.          ["-"],
  126.          ["leave",       {visibleif: inChannel}],
  127.          ["rejoin",      {visibleif: notInChannel}],
  128.          ["delete-view", {visibleif: "!" + inChannel}],
  129.          ["disconnect",  {visibleif: netConnected}],
  130.          ["reconnect",   {visibleif: netDisconnected}],
  131.          ["-"],
  132.          ["print"],
  133.          ["-"],
  134.          ["save"],
  135.          ["-"],
  136.          [navigator.platform.search(/win/i) == -1 ? "quit" : "exit"]
  137.         ]
  138.     };
  139.  
  140.     var Mozilla = "(client.host == 'Mozilla')";
  141.     var ToolkitAppOnLinux = "((client.host != 'Mozilla') and " +
  142.                             "(client.platform == 'Linux'))";
  143.     var ToolkitAppNotOnLinux = "((client.host != 'Mozilla') and " +
  144.                                "!(client.platform == 'Linux'))";
  145.  
  146.     client.menuSpecs["mainmenu:edit"] = {
  147.         label: MSG_MNU_EDIT,
  148.         getContext: getDefaultContext,
  149.         items:
  150.         [
  151.          ["cmd-undo",      {enabledif: "getCommandEnabled('cmd_undo')"}],
  152.          ["cmd-redo",      {enabledif: "getCommandEnabled('cmd_redo')"}],
  153.          ["-"],
  154.          ["cmd-cut",       {enabledif: "getCommandEnabled('cmd_cut')"}],
  155.          ["cmd-copy",      {enabledif: "getCommandEnabled('cmd_copy')"}],
  156.          ["cmd-paste",     {enabledif: "getCommandEnabled('cmd_paste')"}],
  157.          ["cmd-delete",    {enabledif: "getCommandEnabled('cmd_delete')"}],
  158.          ["-"],
  159.          ["cmd-selectall", {enabledif: "getCommandEnabled('cmd_selectAll')"}],
  160.          ["-"],
  161.          ["find"],
  162.          ["find-again", {enabledif: "canFindAgainInPage()"}],
  163.          ["-",                   {visibleif: Mozilla}],
  164.          ["cmd-mozilla-prefs",   {visibleif: Mozilla}],
  165.          ["cmd-chatzilla-prefs", {visibleif: Mozilla}],
  166.          ["-",                   {visibleif: ToolkitAppOnLinux}],
  167.          ["cmd-prefs",           {visibleif: ToolkitAppOnLinux}]
  168.         ]
  169.     };
  170.  
  171.     client.menuSpecs["mainmenu:tools"] = {
  172.         label: MSG_MNU_TOOLS,
  173.         getContext: getDefaultContext,
  174.         items:
  175.         [
  176.          ["cmd-chatzilla-opts", {visibleif: ToolkitAppNotOnLinux}]
  177.         ]
  178.     };
  179.  
  180.     client.menuSpecs["popup:motifs"] = {
  181.         label: MSG_MNU_MOTIFS,
  182.         items:
  183.         [
  184.          ["motif-default",
  185.                  {type: "checkbox",
  186.                   checkedif: isMotif("default")}],
  187.          ["motif-dark",
  188.                  {type: "checkbox",
  189.                   checkedif: isMotif("dark")}],
  190.          ["motif-light",
  191.                  {type: "checkbox",
  192.                   checkedif: isMotif("light")}],
  193.         ]
  194.     };
  195.  
  196.     client.menuSpecs["mainmenu:view"] = {
  197.         label: MSG_MNU_VIEW,
  198.         getContext: getDefaultContext,
  199.         items:
  200.         [
  201.          [">popup:showhide"],
  202.          ["-"],
  203.          ["clear-view"],
  204.          ["hide-view", {enabledif: "client.viewsArray.length > 1"}],
  205.          ["toggle-oas",
  206.                  {type: "checkbox",
  207.                   checkedif: "isStartupURL(cx.sourceObject.getURL())"}],
  208.          ["-"],
  209.          [">popup:motifs"],
  210.          [">popup:fonts"],
  211.          ["-"],
  212.          ["toggle-ccm",
  213.                  {type: "checkbox",
  214.                   checkedif: "client.prefs['collapseMsgs']"}],
  215.          ["toggle-copy",
  216.                  {type: "checkbox",
  217.                   checkedif: "client.prefs['copyMessages']"}],
  218.          ["toggle-timestamps",
  219.                  {type: "checkbox",
  220.                   checkedif: "cx.sourceObject.prefs['timestamps']"}]
  221.         ]
  222.     };
  223.  
  224.     /* Mac expects a help menu with this ID, and there is nothing we can do
  225.      * about it. */
  226.     client.menuSpecs["mainmenu:help"] = {
  227.         label: MSG_MNU_HELP,
  228.         domID: "menu_Help",
  229.         items:
  230.         [
  231.          ["about"],
  232.         ]
  233.     };
  234.  
  235.     client.menuSpecs["popup:showhide"] = {
  236.         label: MSG_MNU_SHOWHIDE,
  237.         items:
  238.         [
  239.          ["tabstrip",
  240.                  {type: "checkbox",
  241.                   checkedif: "isVisible('view-tabs')"}],
  242.          ["header",
  243.                  {type: "checkbox",
  244.                   checkedif: "cx.sourceObject.prefs['displayHeader']"}],
  245.          ["userlist",
  246.                  {type: "checkbox",
  247.                   checkedif: "isVisible('user-list-box')"}],
  248.          ["statusbar",
  249.                  {type: "checkbox",
  250.                   checkedif: "isVisible('status-bar')"}],
  251.  
  252.         ]
  253.     };
  254.  
  255.     client.menuSpecs["popup:fonts"] = {
  256.         label: MSG_MNU_FONTS,
  257.         getContext: getFontContext,
  258.         items:
  259.         [
  260.          ["font-size-bigger", {}],
  261.          ["font-size-smaller", {}],
  262.          ["-"],
  263.          ["font-size-default",
  264.                  {type: "checkbox", checkedif: "!cx.fontSize"}],
  265.          ["font-size-small",
  266.                  {type: "checkbox", checkedif: isFontSize(-2)}],
  267.          ["font-size-medium",
  268.                  {type: "checkbox", checkedif: isFontSize(0)}],
  269.          ["font-size-large",
  270.                  {type: "checkbox", checkedif: isFontSize(+2)}],
  271.          ["font-size-other",
  272.                  {type: "checkbox", checkedif: isFontSizeCustom()}],
  273.          ["-"],
  274.          ["font-family-default",
  275.                  {type: "checkbox", checkedif: isFontFamily("default")}],
  276.          ["font-family-serif",
  277.                  {type: "checkbox", checkedif: isFontFamily("serif")}],
  278.          ["font-family-sans-serif",
  279.                  {type: "checkbox", checkedif: isFontFamily("sans-serif")}],
  280.          ["font-family-monospace",
  281.                  {type: "checkbox", checkedif: isFontFamily("monospace")}],
  282.          ["font-family-other",
  283.                  {type: "checkbox", checkedif: isFontFamilyCustom()}]
  284.         ]
  285.     };
  286.  
  287.     // Me is op.
  288.     var isop    = "(cx.channel.iAmOp()) && ";
  289.     // Me is op or half-op.
  290.     var isopish = "(cx.channel.iAmOp() || cx.channel.iAmHalfOp()) && ";
  291.     // Server has half-ops.
  292.     var shop    = "(cx.server.supports.prefix.indexOf('h') > 0) && ";
  293.  
  294.     client.menuSpecs["popup:opcommands"] = {
  295.         label: MSG_MNU_OPCOMMANDS,
  296.         items:
  297.         [
  298.          ["op",         {visibleif: isop           + "!cx.user.isOp"}],
  299.          ["deop",       {visibleif: isop           + "cx.user.isOp"}],
  300.          ["hop",        {visibleif: isopish + shop + "!cx.user.isHalfOp"}],
  301.          ["dehop",      {visibleif: isopish + shop + "cx.user.isHalfOp"}],
  302.          ["voice",      {visibleif: isopish        + "!cx.user.isVoice"}],
  303.          ["devoice",    {visibleif: isopish        + "cx.user.isVoice"}],
  304.          ["-"],
  305.          ["ban",        {enabledif: "(" + isop + "1) || (" + isopish + "!cx.user.isOp)"}],
  306.          ["unban",      {enabledif: "(" + isop + "1) || (" + isopish + "!cx.user.isOp)"}],
  307.          ["kick",       {enabledif: "(" + isop + "1) || (" + isopish + "!cx.user.isOp)"}],
  308.          ["kick-ban",   {enabledif: "(" + isop + "1) || (" + isopish + "!cx.user.isOp)"}]
  309.         ]
  310.     };
  311.  
  312.  
  313.     client.menuSpecs["context:userlist"] = {
  314.         getContext: getUserlistContext,
  315.         items:
  316.         [
  317.          ["toggle-usort", {type: "checkbox",
  318.                            checkedif: "client.prefs['sortUsersByMode']"}],
  319.          ["toggle-umode", {type: "checkbox",
  320.                            checkedif: "client.prefs['showModeSymbols']"}],
  321.          ["-", {visibleif: "cx.nickname"}],
  322.          ["label-user", {visibleif: "cx.nickname", header: true}],
  323.          [">popup:opcommands", {visibleif: "cx.channel && " + isopish + "cx.user"}],
  324.          ["whois",   {visibleif: "cx.nickname"}],
  325.          ["query",   {visibleif: "cx.nickname"}],
  326.          ["version", {visibleif: "cx.nickname"}],
  327.         ]
  328.     };
  329.  
  330.     var urlenabled = "has('url')";
  331.     var urlexternal = "has('url') && cx.url.search(/^irc:/i) == -1";
  332.     var textselected = "getCommandEnabled('cmd_copy')";
  333.  
  334.     client.menuSpecs["context:messages"] = {
  335.         getContext: getMessagesContext,
  336.         items:
  337.         [
  338.          ["goto-url", {visibleif: urlenabled}],
  339.          ["goto-url-newwin", {visibleif: urlexternal}],
  340.          ["goto-url-newtab", {visibleif: urlexternal}],
  341.          ["cmd-copy-link-url", {visibleif: urlenabled}],
  342.          ["cmd-copy", {visibleif: "!" + urlenabled, enabledif: textselected }],
  343.          ["cmd-selectall", {visibleif: "!" + urlenabled }],
  344.          ["-"],
  345.          ["clear-view"],
  346.          ["hide-view", {enabledif: "client.viewsArray.length > 1"}],
  347.          ["toggle-oas",
  348.                  {type: "checkbox",
  349.                   checkedif: "isStartupURL(cx.sourceObject.getURL())"}],
  350.          ["-", {visibleif: "cx.channel && cx.nickname"}],
  351.          ["label-user", {visibleif: "cx.channel && cx.nickname", header: true}],
  352.          [">popup:opcommands", {visibleif: "cx.channel && " + isopish + "cx.user"}],
  353.          ["whois",   {visibleif: "cx.user"}],
  354.          ["whowas",  {visibleif: "cx.nickname && !cx.user"}],
  355.          ["query",   {visibleif: "cx.nickname"}],
  356.          ["version", {visibleif: "cx.nickname"}],
  357.          ["-"],
  358.          ["leave",       {visibleif: inChannel}],
  359.          ["rejoin",      {visibleif: notInChannel}],
  360.          ["delete-view", {visibleif: "!" + inChannel}],
  361.          ["disconnect",  {visibleif: netConnected}],
  362.          ["reconnect",   {visibleif: netDisconnected}],
  363.          ["-"],
  364.          ["toggle-text-dir"]
  365.         ]
  366.     };
  367.  
  368.     client.menuSpecs["context:tab"] = {
  369.         getContext: getTabContext,
  370.         items:
  371.         [
  372.          ["clear-view"],
  373.          ["hide-view", {enabledif: "client.viewsArray.length > 1"}],
  374.          ["toggle-oas",
  375.                  {type: "checkbox",
  376.                   checkedif: "isStartupURL(cx.sourceObject.getURL())"}],
  377.          ["-"],
  378.          ["leave",       {visibleif: inChannel}],
  379.          ["rejoin",      {visibleif: notInChannel}],
  380.          ["delete-view", {visibleif: "!" + inChannel}],
  381.          ["disconnect",  {visibleif: netConnected}],
  382.          ["reconnect",   {visibleif: netDisconnected}],
  383.          ["-"],
  384.          ["toggle-text-dir"]
  385.         ]
  386.     };
  387.  
  388.     var net          = "cx.network";
  389.     var netAway      = "cx.network.prefs['away']";
  390.     var netAwayIsDef = "(cx.network.prefs['away'] == '" + MSG_AWAY_DEFAULT +
  391.                        "') and " + netAway;
  392.  
  393.     client.menuSpecs["mainmenu:nickname"] = {
  394.         label: client.prefs["nickname"],
  395.         domID: "server-nick",
  396.         getContext: getDefaultContext,
  397.         items:
  398.         [
  399.          ["nick"],
  400.          ["-"],
  401.          ["back", {type: "checkbox", checkedif: net + " and !" + netAway}],
  402.          ["away", {type: "checkbox", checkedif: net + " and " + netAwayIsDef}],
  403.          ["custom-away",
  404.                   {type: "checkbox", checkedif: net + " and !" + netAwayIsDef}]
  405.         ]
  406.     };
  407.  
  408. }
  409.  
  410. function createMenus()
  411. {
  412.     client.menuManager.createMenus(document, "mainmenu");
  413.     client.menuManager.createContextMenus(document);
  414.  
  415.     // The menus and the component bar need to be hidden on some hosts.
  416.     var winMenu   = document.getElementById("windowMenu");
  417.     var tasksMenu = document.getElementById("tasksMenu");
  418.     var toolsMenu = document.getElementById("mainmenu:tools");
  419.     var comBar    = document.getElementById("component-bar");
  420.  
  421.     if (client.host != "Mozilla") {
  422.         tasksMenu.parentNode.removeChild(tasksMenu);
  423.         winMenu.parentNode.removeChild(winMenu);
  424.     } else {
  425.         comBar.collapsed = false;
  426.     }
  427.  
  428.     if ((client.host == "Mozilla") || (client.platform == "Linux")) {
  429.         toolsMenu.parentNode.removeChild(toolsMenu);
  430.     }
  431. }
  432.  
  433. function getCommandContext (id, event)
  434. {
  435.     var cx = { originalEvent: event };
  436.  
  437.     if (id in client.menuSpecs)
  438.     {
  439.         if ("getContext" in client.menuSpecs[id])
  440.             cx = client.menuSpecs[id].getContext(cx);
  441.         else if ("cx" in client.menuManager)
  442.         {
  443.             //dd ("using existing context");
  444.             cx = client.menuManager.cx;
  445.         }
  446.         else
  447.         {
  448.             //no context.
  449.         }
  450.     }
  451.     else
  452.     {
  453.         dd ("getCommandContext: unknown menu id " + id);
  454.     }
  455.  
  456.     if (typeof cx == "object")
  457.     {
  458.         if (!("menuManager" in cx))
  459.             cx.menuManager = client.menuManager;
  460.         if (!("contextSource" in cx))
  461.             cx.contextSource = id;
  462.         if ("dbgContexts" in client && client.dbgContexts)
  463.             dd ("context '" + id + "'\n" + dumpObjectTree(cx));
  464.     }
  465.  
  466.     return cx;
  467. }
  468.